home *** CD-ROM | disk | FTP | other *** search
/ Chip: Internet / Chip Internet.iso / viewer / plyit203.ins / sample.ps_ / sample.ps
Text File  |  1995-04-16  |  631b  |  16 lines

  1. // SAMPLE.PSF - A sample PlayIt script file.
  2.  
  3. // This is a comment line
  4.  
  5. /*
  6.    or you can use 'C' style comments to span lines...
  7.    Note that all commands and filenames are case insensitive.  The exception
  8.    to this rule is in the SetCompression command where we used the 4 char
  9.    ID of the compressor.  In this case, it must be lowercase.
  10. */
  11.  
  12. Open("c:\media\sample.fli")               // Open a FLI
  13. SetCompression("iv32", 7500, 7)           // We'll use Indeo 3.2 compression
  14. Soundtrack = "C:\MUSIC\SAMPLE.WAV"        // Set the soundtrack...
  15. SaveAs("C:\MEDIA\sample.avi", AVI, TRUE)  // ...and write out an AVI
  16.